home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Delphi Magazine Collection 2001
/
Delphi Magazine Collection 20001 (2001).iso
/
DISKS
/
Issue55
/
Splat
/
types.pas
< prev
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
Pascal/Delphi Source File
|
2000-01-26
|
155 b
|
14 lines
unit Types;
interface
// Types I wish Delphi had builtin.
type
NaturalInt = 0..MaxInt;
PositiveInt = 1..MaxInt;
implementation
end.